diff options
| author | real-zephex <[email protected]> | 2024-03-28 10:02:17 +0530 |
|---|---|---|
| committer | real-zephex <[email protected]> | 2024-03-28 10:02:17 +0530 |
| commit | c447e8fde220e36bfe7b22e11a95d5d857d83ba5 (patch) | |
| tree | bdf729dbc795cdb989b11ece13ff2d9a00b77e16 /src/app/manga/[title]/[id]/buttons.jsx | |
| parent | fixes: minor css fixes, added loading indicators, added error pages etc etc (diff) | |
| download | dramalama-c447e8fde220e36bfe7b22e11a95d5d857d83ba5.tar.xz dramalama-c447e8fde220e36bfe7b22e11a95d5d857d83ba5.zip | |
fixes: css improvements and UI redesign for manga info page
Diffstat (limited to 'src/app/manga/[title]/[id]/buttons.jsx')
| -rw-r--r-- | src/app/manga/[title]/[id]/buttons.jsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/app/manga/[title]/[id]/buttons.jsx b/src/app/manga/[title]/[id]/buttons.jsx index b4b8d4a..eec62b9 100644 --- a/src/app/manga/[title]/[id]/buttons.jsx +++ b/src/app/manga/[title]/[id]/buttons.jsx @@ -18,7 +18,10 @@ export default async function Buttons({ content: data }) { }} > <button key={index}> - {item.volumeNumber} - {item.chapterNumber} + <div> + <p>Chapter: {item.chapterNumber}</p> + <p>Volume: {item.volumeNumber}</p> + </div> </button> </Link> ); |